今天目標就是利用已配置好的專案,做一個Hello Word。
先建立一個HellowController,接著放入下方語法
@RequestMapping主要是網址列所對應的路徑
裡面內容主要是說要把 Hello World!! 這個字串傳送到index.jsp的頁面。
@Controller
@RequestMapping(value="/admin/")
public class DefaultController {
@RequestMapping(value="/", method=RequestMethod.GET)
public String showIndexPage(Model model){
model.addAttribute("hello", "Hello World!!");
return "index";
}
}
在index.jsp頁面的標籤內放入下方語法
${hello }的變數會對應到Controller所設定的變數,這邊需要注意。
<h1>${hello }</h1>
結果圖